home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / slrn / slrn_src / macros / ispell.sl < prev    next >
Text File  |  1999-05-14  |  360b  |  21 lines

  1. % This macro demonstrates the use of the post_filter_hook
  2.  
  3. define post_filter_hook (file)
  4. {
  5.    variable rsp;
  6.    variable cmd;
  7.    
  8.    forever 
  9.      {
  10.     rsp = get_response ("NnIi",
  11.                 "Select Filter? \001None, \001Ispell");
  12.     
  13.     if ((rsp == 'i') or (rsp == 'I'))
  14.       cmd = "ispell -x";
  15.     else return;
  16.     
  17.     () = system (Sprintf ("%s '%s'", cmd, file, 2));
  18.      }
  19. }
  20.  
  21.